* Fix regression in Special:Watchlist text header
authorBrion Vibber <brion@users.mediawiki.org>
Mon, 9 Oct 2006 00:38:47 +0000 (00:38 +0000)
committerBrion Vibber <brion@users.mediawiki.org>
Mon, 9 Oct 2006 00:38:47 +0000 (00:38 +0000)
Don't HTML-escape text before you feed it to the wiki parser.

RELEASE-NOTES
includes/SpecialWatchlist.php

index 905ed9f..c228869 100644 (file)
@@ -274,6 +274,7 @@ it from source control: http://www.mediawiki.org/wiki/Download_from_SVN
 * (bug 7459) Magic word variables are always case sensitive
 * Made messages used in Special:Preferences either plain text or wikitext (toggles)
 * Replaced {{SERVER}}{{localurl:xxx}} with {{fullurl:xxx}} in localisation files
+* Fix regression in Special:Watchlist text header
 
 
 == Languages updated ==
index 9f709cc..87c925a 100644 (file)
@@ -273,7 +273,7 @@ function wfSpecialWatchlist( $par ) {
        }
 
        # TODO: Consider removing the third parameter
-       $header .= wfMsgExt( 'watchdetails', array( 'parsemag', 'escape'), $wgLang->formatNum( $nitems ),
+       $header .= wfMsgExt( 'watchdetails', array( 'parsemag' ), $wgLang->formatNum( $nitems ),
                $wgLang->formatNum( $npages ), '',
                $specialTitle->getFullUrl( 'edit=yes' ) );
        $wgOut->addWikiText( $header );